projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4b5fa40
)
(Fpropertize): Don't insist that properties be symbols.
author
Richard M. Stallman
<rms@gnu.org>
Sun, 4 Sep 2005 01:07:27 +0000
(
01:07
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 4 Sep 2005 01:07:27 +0000
(
01:07
+0000)
src/editfns.c
patch
|
blob
|
history
diff --git
a/src/editfns.c
b/src/editfns.c
index da4533d25374605d20573bbd3c5bd094702fb735..a05d23964480bcdb44c463f2df2eb7339d2336d9 100644
(file)
--- a/
src/editfns.c
+++ b/
src/editfns.c
@@
-3260,10
+3260,7
@@
usage: (propertize STRING &rest PROPERTIES) */)
string = Fcopy_sequence (args[0]);
for (i = 1; i < nargs; i += 2)
- {
- CHECK_SYMBOL (args[i]);
- properties = Fcons (args[i], Fcons (args[i + 1], properties));
- }
+ properties = Fcons (args[i], Fcons (args[i + 1], properties));
Fadd_text_properties (make_number (0),
make_number (SCHARS (string)),